say "The Title of the feed is:" 
say feed~getTitle()                                 /* Returns the feed title */ 
sl = BSF("sleep",2) 
say "----" 
say "The URI of the feed is:" 
say feed~getUri()                                    /* Returns the feed URI  */ 
sl = BSF("sleep",2) 
say "----" 
say "The Author of the feed is:" 
say feed~getAuthor()      
/*    Returns the name of the first--feed author in the collection of authors */ 
sl = BSF("sleep",2) 
say "----" 
say "The copyright of the feed is:"  
say feed~getCopyright()                         /* Returns the feed copyright */  
sl = BSF("sleep",2) 
say "----" 
say "The description of the feed is:" 
say feed~getDescription()                     /* Returns the feed description */ 
sl = BSF("sleep",2) 
say "----" 
say "The encoding of the feed is:" 
say feed~getEncoding()          /* Returns the charset encoding of a the feed */ 
say "----" 

sl = BSF("sleep",2)                       /* sleep by using a BSF subfunktion */ 
say just a break; 
sl = BSF("sleep",2)                       /* sleep by using a BSF subfunktion */ 

say "----" 
aut= feed~getAuthors()           /* Returns the feed authors , java.util.List */ 
say aut 
say this is the Authors object 
say "----" 
array = feed~getEntries()        /* Returns the feed entries , java.util.List */ 
say array  
say "this is the entries-array object"